home *** CD-ROM | disk | FTP | other *** search
- unit uRNGintf;
- //------------------------------------------------------------------------------
- // Last updated: 11/06/03
- // Author: Dennis Passmore
- // Company: Ultimate Software, Inc.
- // Contact info: dennis_passmore@ultimatesoftware.com
- //
- // Compatibility: Delphi for .NET HTTP service demo
- //
- // Description: TNTKeyService class implements base .NET service class.
- // TLockserver class implements base ILockserver which is
- // exported via .NET Remoting
- //
- //------------------------------------------------------------------------------
- interface
-
- type
- ILockserver = interface
- function ExtendLock(const fKey: widestring): boolean;
- function Lockitem(const fItem: widestring; out fKey: widestring): boolean;
- function IsItemLocked(const fItem: widestring): boolean;
- function UnLockitem(const fKey: widestring): boolean;
- end;
-
- implementation
-
- end.
-